home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo.
- echo Setup procedure to select appropriate Btrieve file level for
- echo BTcreate/BTsource
- echo Copyright 1995 C-Soft, Inc.
- echo All rights reserved.
- echo.
- echo.
- if %1x == x goto usage
- if %1x == 510x goto 510
- if %1x == 615x goto 615
-
-
- :usage
- echo.
- echo.
- echo.
- echo BTcreate and BTsource are shipped with 2 Btrieve files containing
- echo DDF layout information and sample files information. These 2 files
- echo are BTSOURCE.DAT and BTSOURCN.DAT. This setup batch file needs to be
- echo run with a parameter in order to select which level of Btrieve file will
- echo be processed by BTcreate and BTsource.
- echo Use 510 for Btrieve 5x level or 615 for Btrieve 6x level.
- echo EXAMPLE: setup 510
- echo.
- echo The correct files will thus be copied from the shipped set of supporting
- echo files (extension .510 or .615 to .DAT).
- goto end
-
- :510
- copy btsource.510 btsource.dat
- copy btsourcn.510 btsourcn.dat
- goto end
-
- :615
- copy btsource.615 btsource.dat
- copy btsourcn.615 btsourcn.dat
-
- :end
- echo.
- echo.